home *** CD-ROM | disk | FTP | other *** search
-
- #include "includes.h"
- #include "installergui_data.h"
-
- /********************************************************************
- *
- * DESCRIPTION
- *
- * return a string, which contains a short description of the
- * GUI. any installer script can get this string by calling the
- * (DATABASE "gui") function
- *
- * IN: -
- * OUT: short description string
- *
- */
-
- /********************************************************************
- *
- * STATIC
- *
- */
-
- /********************************************************************
- *
- * EXTERN
- *
- */
-
- /********************************************************************
- *
- * PUBLIC
- *
- */
-
- /********************************************************************
- *
- * CODE
- *
- */
-
- char * __asm igui_GetGUIInfo(void)
- {
- #ifdef DEBUG
- DEBUG_MAKRO
- #endif
-
- return ("MUI plugin by Savage");
- }
-